Expand description
Functions for reading binary data into Rust data structures. All functions are zero-allocation.
There are functions for reading a single value, an array of values, a single null-terminated UTF-8 string (which should also work with ASCII strings), and an array of null-terminated strings terminated by another null byte.
Functions preserve the lifetime of the underlying data. These functions are
memory safe, although this is in part based on the assumption that the
client only implements the unsafe trait Pod
where safe to do so.
Functions assert that the provided data is large enough and aligned. The
string functions check that strings are valid UTF-8. There is no checking
that the provided input will produce a valid object (for example, an enum
has a valid discriminant). The user must assert this by implementing the
trait Pod
.
There are also unsafe versions of most functions which do not require the
return type to implement Pod
and which do no checking.
Structs
self.data
, yielding strings (null-terminated in self.data
).
See read_strs_to_null
.Traits
Pod
the programmer asserts that it is safe to
read the type from binary slices provided to read
, etc.Functions
T
from input
.T
s from input.T
s from input
with no checks.input
. The string must be a null-terminated UTF-8 string.
Note that an ASCII C string fulfills this requirement.input
with no checks.input
.
Each string must be a null-terminated UTF-8 string. The sequence of strings
is terminated either by a second null byte, or the end of input.T
from input
with no checks.